Rails 资源
Rails 路由
排除路由控制器
config/routes.rb
文件 修改
1 | resources :posts, :excepet => :show |
常用路由写法
1 | get 'posts/:id', :to => 'posts#show' |
简单的Get
请求
小试一下
1 |
|
命名路由
1 | get 'post/:id', :to => 'posts:show', :as => 'show_post' |
小试一下
1 |
|
集合路由
config/routes.rb
文件 修改
- 方式一
1 | resources :posts do |
- 方式二
这种方式更为简洁
1 | resources :posts do |
成员路由
1 | resources :posts do |
Comments